CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - LR parsing table

搜索资源列表

  1. whale-0.3.2-src.zip

    0下载:
  2. Complete support for EBNF notation; Object-oriented parser design; C++ output; Deterministic bottom-up "shift-reduce" parsing; SLR(1), LALR(1) and LR(1) table construction methods; Automatic parse tree creation; Possibility to output pars
  3. 所属分类:编译器/词法分析

    • 发布日期:
    • 文件大小:220189
    • 提供者:
  1. LR0

    7下载:
  2. (1)构造文法G的LR(0)项目 (2)构造文法G的LR(0)项目集规范族及识别活前缀的DFA (3)证明文法G不是LR(0)文法而是SLR(1)文法,并构造SLR(1)分析表 (4)设计LR语法分析程序,且能输出分析过程 (5)列举两个例子测试语法分析程序(识别失败一例,识别成功一例,后者推导步骤不得少于10步) -(1) construct grammar G of the LR (0) item (2) construct grammar G of the LR (0)
  3. 所属分类:Compiler program

    • 发布日期:2016-01-21
    • 文件大小:45372
    • 提供者:wolf
  1. LR1

    0下载:
  2. 利用字符二维数组对文法、First集、Follow集、终结符集、非终结符集等数据进行存储,还有一个是状态表存储DFA的状态。二维TAB表对其中的DFA表进行存储,横坐标是状态号,纵坐标为文法中的符号(终结符和非终结符)。-Two-dimensional array of characters to use grammar, First Set, Follow sets, at the end of sets, sets and other non-terminator data storage,
  3. 所属分类:Compiler program

    • 发布日期:2017-03-27
    • 文件大小:513468
    • 提供者:liyingan
  1. whale-0.3.2-src

    0下载:
  2. Complete support for EBNF notation; Object-oriented parser design; C++ output; Deterministic bottom-up "shift-reduce" parsing; SLR(1), LALR(1) and LR(1) table construction methods; Automatic parse tree creation; Possibility to output parse tree in XM
  3. 所属分类:Compiler program

    • 发布日期:2017-11-09
    • 文件大小:220502
    • 提供者:none
  1. lr1

    0下载:
  2. LR 语法分析 ACTION GOTO 表-LR parsing ACTION GOTO table
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:2502
    • 提供者:cultsharp
  1. LR

    1下载:
  2. 1.实验目的 设计一个LR分析器,实现对表达式语言的分析,加深对LR语法分析方法的基本思想的理解,掌握LR分析器设计与实现的基本方法。 2.实验要求 建立文法及其LR分析表表示的数据结构,设计并实现一个LALR(1)的分析器,对源程序经词法分析后生成的二元式代码流进行分析,如果输入串是文法定义的句子则输出“是”,否则输出“否”。 3.实验内容 (1)文法描述及其LALR(1)分析表 描述表达式语言的文法G如下: -1. The experiment was to de
  3. 所属分类:Compiler program

    • 发布日期:2016-10-18
    • 文件大小:290259
    • 提供者:sh_xj
  1. wenfafenxi

    0下载:
  2. 使用如下文法: E ? E+T | T T ? T*F | F F ? (E) | id 2. 对于任意给定的输入串(词法记号流)进行语法分析,采用LR分析器来完成。手工构造LR分析表,利用移进-归约分析算法-Use the following grammar: E ? E+ T | TT ? T* F | FF ? (E) | id 2. For any given input string (lexical token stream) parsing, the us
  3. 所属分类:Compiler program

    • 发布日期:2017-03-24
    • 文件大小:703512
    • 提供者:dmf
  1. LR(0)

    0下载:
  2. 编译器LR(0)分析表的构造,用于编译器语法分析。-Compiler LR (0) of the table structure, used for parsing the compiler.
  3. 所属分类:Compiler program

    • 发布日期:2017-03-26
    • 文件大小:867340
    • 提供者:zhuwentao
  1. LRfenxiqi

    0下载:
  2. 对于任意给定的输入串(词法记号流)进行语法分析,要求采用LR分析器来完成。手工构造LR分析表,利用移进-归约分析算法(P69 图3.12)输出(P70 表3.8)对应的动作部分。如: 输入:id*+id/(id+id)# 输出:移进 按 F->id归约 移进 error -For any given input string (the lexical token stream) parsing, required by LR parser to complet
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:599472
    • 提供者:hanson
  1. Parsing

    1下载:
  2. 语法分析程序的设计与实现 方法2:编写LL(1)语法分析程序,要求如下: (1)编程实现算法4.2,为给定文法自动构造预测分析表; (2)编程实现算法4.1,构造LL(1)预测分析程序。 2. 方法3:编写语法分析程序实现自底向上的分析,要求如下: 构造识别所有活前缀的DFA。 构造LR分析表。 编程实现算法4.3,构造LR分析程序。 -Parser design and implementation of Method 2: preparat
  3. 所属分类:编译器/词法分析

    • 发布日期:2012-12-20
    • 文件大小:422797
    • 提供者:Eric
  1. main

    1下载:
  2. 使用如下文法: E E+T | T T T*F | F F (E) | id 实现:对于任意给定的输入串(词法记号流)进行语法分析,要求采用LR分析器来完成。手工构造LR分析表,利用移进-归约分析算法输出对应的动作部分。-Use the following syntax:E T E+T |* F F T T |F ( E ID ) |Implementation: for any given input string ( lexical mark flow )
  3. 所属分类:编译器/词法分析

    • 发布日期:2012-12-20
    • 文件大小:1182
    • 提供者:fansofdetective
  1. lr0

    0下载:
  2. 对于LR文法,我们可以自动构造相应的LR分析表-LR grammar, we can automatically construct the corresponding LR parsing table
  3. 所属分类:Compiler program

    • 发布日期:2017-11-18
    • 文件大小:3992
    • 提供者:杨白华
  1. LR0Algorithm_V1

    0下载:
  2. LR算法图形化演示系统,语法树,语法分析表-LR algorithm graphical presentation systems, syntax tree parsing table
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-25
    • 文件大小:67824
    • 提供者:毛勇乐
  1. LR0

    0下载:
  2. LR0语法分析,要求:(1)直接输入根据己知文法构造的LR(0)分析表。 (2)输入已知文法的项目集规范族和转换函数,由程序自动生成LR(0)分析表; (3)输入已知文法,由程序自动生成LR(0)分析表。-LR0 parsing requirements: (1) direct input grammar based on the known structure of LR (0) Analysis Table. (2) Enter the known grammar of item
  3. 所属分类:Compiler program

    • 发布日期:2017-05-13
    • 文件大小:2992163
    • 提供者:小飞
搜珍网 www.dssz.com